home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / SERVER / ServerSystem.h < prev   
C/C++ Source or Header  |  1990-07-11  |  641b  |  26 lines

  1. #ifndef ServerSystem_First
  2. #define ServerSystem_First
  3.  
  4. #include "WindowSystem.h"
  5.  
  6. class ServerWindowSystem: public WindowSystem {
  7. public:
  8.     ServerWindowSystem(bool &ok);
  9.     ~ServerWindowSystem();
  10.        
  11.     int Connect(char *hostname, int port);
  12.     bool InitServer();
  13.     
  14.     WindowPort *MakeWindow(InpHandlerFun ihf, void *priv,
  15.                             bool overlay, bool block);
  16.     FontManager *MakeFontManager(char *name);
  17.     Bitmap *MakeBitmap(Point sz, u_short *data, u_short depth);
  18.     Bitmap *MakeBitmap(const char *name);
  19.     
  20.     void graphicDelay(unsigned int duration);
  21. };
  22.  
  23. extern WindowSystem *NewServerSystem();
  24.  
  25. #endif System_First
  26.